home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 112 / EnigmaAmiga112CD.iso / dalla rivista / workbench / nopaz / execute_me next >
Text File  |  1992-06-17  |  812b  |  23 lines

  1. ; Ah, good, you're reading the file before executing it.
  2. ; This simply creates a fonts directory, and renames the font files
  3. ; appropriately, making them easy to copy to your FONTS: directory.
  4.  
  5. ask "Did you look at this batch file before running it?"
  6. if NOT WARN
  7.     echo "Go look at it first.  It might be erasing your hard disk."
  8.     quit
  9. endif
  10.  
  11. echo noline "Good.  Making some directories..."
  12. MakeDir fonts
  13. MakeDir fonts/DarkParticle
  14. echo noline "Doing some renames..."
  15. rename DarkParticle.font fonts/DarkParticle.font
  16. rename DarkParticle_8 fonts/DarkParticle/8
  17. rename DakrParticle_9 fonts/DarkParticle/9
  18.  
  19. echo "*N*NFinished.  You many now copy the newly created 'fonts' directory"
  20. echo "en masse to your FONTS: directory.  The following command will do"
  21. echo "this for you nicely:"
  22. echo "*N    Copy fonts FONTS: all"
  23.